int x = 4;
println(x); // Prints "4" to the console
x *= 2; // Equivalent to x = x * 2
println(x); // Prints "8" to the console

int y = 4;
println(y); // Prints "4" to the console
y /= 2; // Equivalent to y = y / 2
println(y); // Prints "2" to the console